Web Storage

Web Storage and DOM Storage (Document Object Model) are web application software methods and protocols used for storing data in a web browser. Web storage supports persistent data storage, similar to cookies but with a greatly enhanced capacity[1] and no information stored in the HTTP Request Header.[2] There are 2 main web storage types, local storage and session storage, behaving like Persisted Cookies and Session Cookies accordingly.

Web storage is being standardized by the World Wide Web Consortium (W3C). It was originally part of the HTML 5 specification, but is now in a separate specification.[3] It is supported by Internet Explorer 8, Mozilla-based browsers (e.g., Firefox 2+, officially from 3.5),[4] Safari 4, Google Chrome 4 (sessionStorage is from 5), and Opera 10.50. As of 14 July 2010 (2010 -07-14) only Opera supports the storage events.[5]

Contents

Features

Web storage can be viewed simplistically as an improvement on cookies. However, it differs from cookies in some key ways.

Storage Size

Web Storage provides far greater storage capacity (5MB per domain in Mozilla Firefox,[6] Google Chrome, and Opera, 10MB per storage area in Internet Explorer[7]) compared to 4KB (around 1000 times less space) available to cookies.

Client-side interface

Unlike cookies, which can be accessed by both the server and client side, Web storage falls exclusively under the purview of client-side scripting. Web storage data is not transmitted to the server in every HTTP request, and a web server can't directly write to Web storage, but can of course issue read and write requests.

Local and session storage

Web storage offers two different storage areas—local storage and session storage—which differ in scope and lifetime. Data placed in local storage is per domain (it's available to all scripts from the domain that originally stored the data) and persists after the browser is closed. Session storage is per-page-per-window and is limited to the lifetime of the window. Session storage is intended to allow separate instances of the same web application to run in different windows without interfering with each other, a use case that's not well supported by cookies.[8]

Interface and Data model

Web storage currently provides a better programmatic interface than cookies exposing an associative array data model where the keys and values are both strings. An additional API for accessing structured data, perhaps based on SQL, is being considered by the W3C Web Applications Working Group.[9]

Usage

Browsers that support web storage have the global variables 'sessionStorage' and 'localStorage' declared at the window level. The following JavaScript code can be used on these browsers to trigger web storage behaviour:

sessionStorage

// Store value on browser for duration of the session
sessionStorage.setItem('key', 'value');
 
// Retrieve value (gets deleted when browser is closed and re-opened)
alert(sessionStorage.getItem('key'));

localStorage

// Store value on the browser beyond the duration of the session
localStorage.setItem('key', 'value');
 
// Retrieve value (works even after closing and re-opening the browser)
alert(localStorage.getItem('key'));

Accessing data for a particular domain

The following code can be used to retrieve all values stored in local storage for a particular domain (the domain for the web page that is being browsed).

This JavaScript code can be executed using development tools available in most modern browsers such as the IE Developer Toolbar, Chrome Developer Tools, or Firebug extension in Firefox.:

var output = "LOCALSTORAGE DATA:\n------------------------------------\n";
if (localStorage) {
    if (localStorage.length) {
       for (var i = 0; i < localStorage.length; i++) {
           output += localStorage.key(i) + ': ' + localStorage.getItem(localStorage.key(i)) + '\n';
       }
    } else {
       output += 'There is no data stored for this domain.';
    }
} else {
    output += 'Your browser does not support local storage.'
}
alert(output);

Data Types

It is important to note that only strings can be stored via the Storage API.[10] Attempting to store a different data type will result in an automatic conversion into a string in most browsers. Conversion into JavaScript Object Notation (JSON), however, allows for effective storage of JavaScript objects.

// Store an object instead of a string
localStorage.setItem('key', {name: 'value'});
alert(typeof localStorage['key']); // string
 
// Store an integer instead of a string
localStorage.setItem('key', 1);
alert(typeof localStorage['key']); // string
 
// Store an object using JSON
localStorage.setItem('key', '{"name":"value"}');
alert(eval(localStorage['key']).name); // value

Nomenclature

The W3C draft is titled "Web Storage", but "DOM storage" is also a commonly used name.[11][12]

The "DOM" in DOM storage doesn't literally refer to the Document Object Model. "The term DOM is used to refer to the API set made available to scripts in Web applications, and does not necessarily imply the existence of an actual Document object..."[13]

Web Storage Management

Storage of Web Storage Objects is enabled per default in Mozilla Firefox and SeaMonkey, but can be disabled by setting the "about:config" parameter "dom.storage.enabled" to false.[14]

Mozilla Firefox stores all Web Storage objects in a single file named webappsstore.sqlite. The sqlite3 command can be used to show the elements stored therein.[15]

There are browser extensions/add-ons for Google Chrome and Mozilla Firefox available that let the user deal with web Storage, such as "Click&Clean",[16][17] "BetterPrivacy" which can be configured to remove the whole Web Storage automatically on a regular basis.[18][19][20]

Similar technologies

References

  1. ^ Opera Web Storage, 2011 http://dev.opera.com/articles/view/web-storage/
  2. ^ AndyHume.net, 2011 http://blog.andyhume.net/localstorage-is-not-cookies
  3. ^ Web Storage. W3.org. Retrieved on 2011-06-12.
  4. ^ Mozilla Developer Center: DOM Storage. Developer.mozilla.org. Retrieved on 2011-06-12.
  5. ^ Web Storage (DOM Storage). Dive Into JavaScript (2010-07-14). Retrieved on 2011-06-12.
  6. ^ John Resig: DOM Storage. Ejohn.org. Retrieved on 2011-06-12.
  7. ^ MSDN: Introduction to DOM Storage. Msdn.microsoft.com. Retrieved on 2011-06-12.
  8. ^ W3C: Web Storage draft standard. Dev.w3.org (2004-02-05). Retrieved on 2011-06-12.
  9. ^ W3C: Web SQL Database (working draft). W3.org (2010-11-18). Retrieved on 2011-06-12.
  10. ^ W3C, 2011 http://dev.w3.org/html5/webstorage/
  11. ^ Mozilla Developer Center: DOM Storage. Developer.mozilla.org. Retrieved on 2011-06-12.
  12. ^ MSDN: Introduction to DOM Storage. Msdn.microsoft.com. Retrieved on 2011-06-12.
  13. ^ W3C: Web Storage draft standard. Dev.w3.org (2004-02-05). Retrieved on 2011-06-12.
  14. ^ Mozillazine article on disabling Web Storage Objects in about:config. Kb.mozillazine.org. Retrieved on 2011-06-12.
  15. ^ Firefox’s Super Cookies, Cerias, January 16, 2008
  16. ^ "Click&Clean" extension for Google Chrome. Hotcleaner.com (2011-06-01). Retrieved on 2011-06-12.
  17. ^ "Click&Clean add-on for Mozilla Firefox. Addons.mozilla.org. Retrieved on 2011-06-12.
  18. ^ Mozilla add-ons page for "Better Privacy". Addons.mozilla.org. Retrieved on 2011-06-12.
  19. ^ Homepage of "Better Privacy", with some further references to blogs and articles. Netticat.ath.cx. Retrieved on 2011-06-12.
  20. ^ Google Chrome Browser Client-Side Storage. Hotcleaner.com. Retrieved on 2011-06-12.
  21. ^ Indexed Database API. W3.org. Retrieved on 2011-06-12.

External links